home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 September / PCWorld_2002-09_cd.bin / Software / Vyzkuste / httrack / httrack-3.20RC4.exe / {app} / src / htsbase.h < prev    next >
C/C++ Source or Header  |  2002-07-09  |  4KB  |  136 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Basic definitions                                      */
  34. /*       Used in .c files for basic (malloc() ..) definitions   */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #ifndef HTS_BASICH
  39. #define HTS_BASICH
  40.  
  41. #include "htsglobal.h"
  42.  
  43. // size_t et mode_t
  44. #include <stdio.h>
  45. #if HTS_WIN
  46. #else
  47. #include <fcntl.h>
  48. #endif
  49.  
  50. #if HTS_WIN
  51. #else
  52.  #define min(a,b) ((a)>(b)?(b):(a))
  53.  #define max(a,b) ((a)>(b)?(a):(b))
  54. #endif
  55.  
  56. // teste ΘgalitΘ de 2 chars, case insensitive
  57. #define hichar(a) ((((a)>='a') && ((a)<='z')) ? ((a)-('a'-'A')) : (a))
  58. #define streql(a,b) (hichar(a)==hichar(b))
  59.  
  60. // is this MIME an hypertext MIME (text/html), html/js-style or other script/text type?
  61. #define HTS_HYPERTEXT_DEFAULT_MIME "text/html"
  62. #define is_hypertext_mime(a) \
  63.    ( (strfield2((a),"text/html")!=0)\
  64.   || (strfield2((a),"application/x-javascript")!=0) \
  65.   || (strfield2((a),"text/css")!=0) \
  66.   || (strfield2((a),"image/svg+xml")!=0) \
  67.   /*|| (strfield2((a),"audio/x-pn-realaudio")!=0) */\
  68.   )
  69.  
  70. #define may_be_hypertext_mime(a) \
  71.    (\
  72.      (strfield2((a),"audio/x-pn-realaudio")!=0) \
  73.   )
  74.  
  75.  
  76. // caractΦre maj
  77. #define isUpperLetter(a) ( ((a) >= 'A') && ((a) <= 'Z') )
  78.  
  79. // conversion Θventuelle / vers antislash
  80. #if HTS_WIN
  81. char* antislash(char* s);
  82. #else
  83. #define antislash(A) (A)
  84. #endif
  85.  
  86.  
  87. // functions
  88. #if HTS_PLATFORM!=3
  89. #ifdef __cplusplus
  90. extern "C" {
  91. #endif
  92. #if HTS_PLATFORM!=2
  93. #if HTS_PLATFORM!=1
  94.  int   open      (const char *, int, ...);
  95. #endif
  96.  //int   read      (int,const char*,int);
  97.  //int   write     (int,char*,int);
  98. #endif
  99. #if HTS_PLATFORM!=1
  100.  int   close     (int);
  101.  void* calloc    (size_t,size_t);
  102.  void* malloc    (size_t);
  103.  void* realloc   (void*,size_t);
  104.  void  free      (void*);
  105. #endif
  106. #if HTS_WIN
  107. #else
  108.  int   mkdir     (const char*,mode_t);
  109. #endif
  110. #ifdef __cplusplus
  111. }
  112. #endif
  113. #endif
  114.  
  115.  
  116. // tracer malloc()
  117. #if HTS_TRACE_MALLOC
  118. #define malloct(A)    hts_malloc(A,0)
  119. #define calloct(A,B)  hts_malloc(A,B)
  120. #define freet(A)      hts_free(A)
  121. #define realloct(A,B) hts_realloc(A,B)
  122. void  hts_freeall();
  123. void* hts_malloc    (size_t,size_t);
  124. void  hts_free      (void*);
  125. void* hts_realloc   (void*,size_t);
  126. #else
  127. #define malloct(A)    malloc(A)
  128. #define calloct(A,B)  calloc(A,B)
  129. #define freet(A)      free(A)
  130. #define realloct(A,B) realloc(A,B)
  131. #endif
  132.  
  133.  
  134. #endif
  135.  
  136.